home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / eot_cloud_load.ifx.pre < prev    next >
Text File  |  2004-08-03  |  997b  |  48 lines

  1. /*
  2.  * EOT_Cloud_Load.ifx.pre
  3.  * Written by Keith Barkley
  4.  *
  5.  * Cloud Sequence Effect.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base  = 'Autofx_Cldld_'
  19.  
  20. lpath  = GETCLIP(base||'Path')
  21. lfile  = GETCLIP(base||'File')
  22. step   = GETCLIP(base||'StepSize')
  23.  
  24.  
  25. IF lpath   = "" THEN lpath   = "Storage/Clouds"
  26. IF step    = "" THEN step    =   1
  27.  
  28.  
  29. Gadget.1 = 'STRING  150  10 260 14 "Cloud Options File:"' lfile
  30. Gadget.2 = 'FILEREQ 412  10  20 14 "Cloud Options File:" 'lpath ' #?' lfile 'AT=1'
  31. Gadget.3 = 'INTEGER 150  26 110 14 "Step Size:"' step
  32. Gadget.4 = 'END'
  33.  
  34. NewComplexRequest '"Cloud Sequence"' Gadget 450 70
  35. IF rc ~= 0 THEN EXIT rc
  36.  
  37. CALL SETCLIP(base||'Path'       , result.2.path)
  38. CALL SETCLIP(base||'File'       , result.2.file)
  39. CALL SETCLIP(base||'StepSize'   , result.3)
  40.  
  41. increment = 1
  42.  
  43. CALL SETCLIP(base ||'Increment', increment)
  44.  
  45. undo on
  46.  
  47. EXIT
  48.